home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- /*****
- *
- * MemoryUtil.h
- *
- * This is a support file for "Grant's CGI Framework".
- * Please see the license agreement that accompanies the distribution package
- * for licensing details.
- *
- * Copyright ©1995 by Grant Neufeld
- * grant@acm.com
- * http://arpp1.carleton.ca/grant/
- *
- *****/
-
- #include "MyConfiguration.h"
-
-
- /*** FUNCTION PROTOTYPES ***/
-
- Handle MyNewHandle ( long, OSErr * );
- Handle MyNewHandleClear ( long, OSErr * );
- Ptr MyNewPtr ( long, OSErr * );
- Ptr MyNewPtrClear ( long, OSErr * );
-
- Boolean InitializeEmergencyMemory ( OSErr * );
- Boolean IsEmergencyMemAvail ( void );
- #if !(kCompileWithQuitOnLowMemory)
- OSErr RecoverEmergencyMemory ( void );
- #endif
- pascal long MyGrowZone ( Size );
-
-
- /*** EOF ***/